/* User Dashboard Styles - arc-user-ui entegrasyonu */

/* Gradient Background */
.bg-gradient-8,
.variation-02 {
    background: #FFFFFF !important;
}

/* Gradient Border */
.rbt-gradient-border {
    background: linear-gradient(180deg, #000000 0%, #444444 100%) !important;
    z-index: 10;
}

/* Button Styles */
.rbt-btn {
    background: #FFD600;
    color: black;
}

.rbt-btn.btn-md {
    color: black;
}

.rbt-btn:hover {
    background: #e6c200;
    color: #000000;
}

.rbt-btn.btn-gradient {
    color: #000000;
    background-size: 300% 100%;
    background-image: linear-gradient(to right, #FFD600, #FFD600, #FFD600, #FFD600);
}

.rbt-btn.btn-gradient:hover {
    background: #e6c200;
    background-image: linear-gradient(to right, #e6c200, #FFD600, #FFD600, #e6c200);
    color: #000000;
}

.rbt-btn.btn-border {
    border: 2px solid #FFD600 !important;
    color: #000 !important;
    background: transparent !important;
}

.rbt-btn.btn-border:hover {
    background: #FFD600 !important;
    border-color: #FFD600 !important;
    color: #000 !important;
}

/* Dashboard Menu */
.dashboard-mainmenu li a.active span {
    color: black !important;
}

.dashboard-mainmenu li a:hover span {
    color: black !important;
}

.dashboard-mainmenu li a.active i {
    color: black !important;
}

.dashboard-mainmenu li a {
    color: gray !important;
}

.dashboard-mainmenu li a:hover {
    color: black !important;
}

/* Tab Buttons */
.tab-button-style-2 li a.active {
    color: black !important;
}

.tab-button-style-2 li a::after {
    background-color: black !important;
}

/* Section Titles */
.section-title h4.rbt-title-style-3 {
    text-align: center;
}

/* Table Styles */
.rbt-table thead tr th,
.rbt-table thead tr td {
    background: #FFD600 !important;
    border-bottom: 2px solid lightgray;
}

.rbt-table tbody tr:nth-child(even) th,
.rbt-table tbody tr:nth-child(even) td {
    background: #fff;
}

.rbt-table tbody tr td {
    border-bottom: 2px solid #d3d3d3;
}

/* Card Styles */
.rbt-card-title {
    font-size: 20px !important;
}

.rbt-card {
    padding: 20px 20px 15px;
}

/* Dashboard Content */
.rbt-dashboard-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.rbt-dashboard-content-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.tutor-bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF !important;
}

.bg_image--13 {
    background: #FFFFFF !important;
    background-image: none !important;
}

/* Fallback gradient if image not found */
.rbt-banner-image {
    background: #FFFFFF !important;
    height: 100%;
    width: 100%;
}

.height-350 {
    height: 350px;
}

.rbt-tutor-information {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    min-height: 350px;
}

.rbt-tutor-information-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rbt-tutor-information-right {
    display: flex;
    align-items: center;
}

.rbt-avatars.size-lg img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD600;
}

.tutor-content h5.title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rbt-meta.rbt-meta-white {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.rbt-meta.rbt-meta-white li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.rbt-meta.rbt-meta-white li i {
    margin-right: 5px;
}

/* Sidebar Styles */
.rbt-default-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 30px;
}

.rbt-default-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rbt-default-sidebar-list li {
    margin-bottom: 5px;
}

.rbt-default-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    color: gray;
}

.rbt-default-sidebar-list li a:hover {
    background: #fffef0;
    color: black;
}

.rbt-default-sidebar-list li a.active {
    background: #FFD600;
    color: black;
    font-weight: 600;
}

.rbt-default-sidebar-list li a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media only screen and (max-width: 991px) {
    .rbt-tutor-information {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        min-height: auto;
    }

    .rbt-tutor-information-right {
        width: 100%;
        margin-top: 20px;
    }

    .rbt-tutor-information-right .tutor-btn {
        width: 100%;
    }

    .rbt-tutor-information-right .rbt-btn {
        width: 100%;
        justify-content: center;
    }
}

